home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / ROM_Kernel_Manuals / Devices / ramdev-mountlist < prev    next >
Encoding:
Text File  |  1992-08-20  |  1.4 KB  |  66 lines

  1. /*
  2.  * Mountlist for manually mounting the sample ramdisk driver.
  3.  *
  4.  * F0: and F1: are set up for the V1.3 fast file system (FFS).
  5.  * S2: and S3: are setup for the old file system (OFS).
  6.  *
  7.  * After mounting, the drives must be formatted.  Be sure to
  8.  * use the FFS flag when formatting the Fast File System
  9.  * ramdrives:
  10.  *
  11.  *    ;make sure "ramdev.device" is in DEVS:
  12.  *
  13.  *    mount f0: from mydev-mountlist
  14.  *    format drive f0: name "Zippy" FFS
  15.  */
  16. F0:       Device = ramdev.device
  17.        Unit   = 0
  18.        LowCyl = 0 ; HighCyl = 14
  19.        Surfaces  = 1
  20.        Buffers = 1
  21.        BlocksPerTrack = 10
  22.        Flags  = 0
  23.        Reserved = 2
  24.        GlobVec = -1
  25.        BufMemType = 0
  26.        DosType = 0x444F5301
  27.        StackSize = 4000
  28.        FileSystem = l:fastfilesystem
  29. #
  30. F1:       Device = ramdev.device
  31.        Unit   = 1
  32.        LowCyl = 0 ; HighCyl = 14
  33.        Surfaces  = 1
  34.        Buffers = 1
  35.        BlocksPerTrack = 10
  36.        Flags  = 0
  37.        Reserved = 2
  38.        GlobVec = -1
  39.        BufMemType = 0
  40.        DosType = 0x444F5301
  41.        StackSize = 4000
  42.        FileSystem = l:fastfilesystem
  43. #
  44. S2:       Device = ramdev.device
  45.        Unit   = 2
  46.        Flags  = 0
  47.        Surfaces  = 1
  48.        BlocksPerTrack = 10
  49.        Reserved = 1
  50.        Interleave = 0
  51.        LowCyl = 0  ;  HighCyl = 14
  52.        Buffers = 1
  53.        BufMemType = 0
  54. #
  55. S3:       Device = ramdev.device
  56.        Unit   = 3
  57.        Flags  = 0
  58.        Surfaces  = 1
  59.        BlocksPerTrack = 10
  60.        Reserved = 1
  61.        Interleave = 0
  62.        LowCyl = 0  ;  HighCyl = 14
  63.        Buffers = 1
  64.        BufMemType = 0
  65. #
  66.